summaryrefslogtreecommitdiff
path: root/src/pages/shop/brands/[slug].js
diff options
context:
space:
mode:
authorRafi Zadanly <rafizadanly@gmail.com>2022-12-16 17:35:26 +0700
committerRafi Zadanly <rafizadanly@gmail.com>2022-12-16 17:35:26 +0700
commitf9e3e64ca2f95aabe17a62d9c09f3fcef7c2c48f (patch)
tree82426f7cbee7d8d923afa82cb8d1bb1944d9ee32 /src/pages/shop/brands/[slug].js
parentb7a98fbaa9bd2c8d9fafbe3090bc2c0a8a09dde5 (diff)
Footer
Diffstat (limited to 'src/pages/shop/brands/[slug].js')
-rw-r--r--src/pages/shop/brands/[slug].js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pages/shop/brands/[slug].js b/src/pages/shop/brands/[slug].js
index a2f05cfa..8e67ef1e 100644
--- a/src/pages/shop/brands/[slug].js
+++ b/src/pages/shop/brands/[slug].js
@@ -1,6 +1,7 @@
import axios from "axios";
import { useEffect, useState } from "react";
import Filter from "../../../components/Filter";
+import Footer from "../../../components/Footer";
import Header from "../../../components/Header";
import Layout from "../../../components/Layout";
import Pagination from "../../../components/Pagination";
@@ -125,6 +126,8 @@ export default function BrandDetail({
<Pagination pageCount={pageCount} currentPage={parseInt(page)} url={route()} />
</div>
</div>
+
+ <Footer />
</Layout>
</>
)